/*
Theme Name: Frank
Theme URI: http://prthemes.net/frank
Author: PRThemes
Author URI: http://prthemes.net/
Description: Frank is a responsive mobile friendly WordPress blog theme made for bloggers who loves to write about their adventures. 
Version: 1.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: white, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, post-formats, sticky-post, translation-ready, rtl-language-support
Text Domain: frank
*/

body{
    font-family: 'PT Serif', serif;
    font-size: 14px;
    line-height: 1.5;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    overflow-wrap: break-word;
}

.container{
    width: 1040px;
    margin: 0 auto;
}

h1, 
h2, 
h3,
h4,
h5,
h6{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.no-select{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

input, select, textarea{
    font-family: 'Pt Serif', serif;
}

img{
    max-width: 100%;
    height: auto;
}

iframe{
    max-width: 100%;
    height: auto;
}

::selection {
    background: #c5b358; /* WebKit/Blink Browsers */
    color: #fff;
}
::-moz-selection {
    background: #c5b358; /* Gecko Browsers */
    color: #fff;
}

@media (max-width: 1200px){
    .container{
        width: 940px;
    }
}

@media (max-width: 991px){
    .container{
        width: 100%;
        padding: 0 10px;
    }
}

/* ===== TOP SECTION ===== */
#top-section{
    background: #222;
}

#top-section .social-icons{
    float: left;
}

.social-icons a,
.search-wrap a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.social-icons a{
    margin-left: -4px;
}

.social-icons a:first-child{
    margin-left: 0;
}

.social-icons a.facebook:hover{
    background: #3b5998;
}
.social-icons a.twitter:hover{
    background: #00aced;
}
.social-icons a.pinterest:hover{
    background: #cb2027;
}
.social-icons a.instagram:hover{
    background: #125688;
}
.social-icons a.gplus:hover{
    background: #dd4b39;
}
.social-icons a.tumblr:hover{
    background: #32506d;
}
.social-icons a.linkedin:hover{
    background: #0077b5;
}
.social-icons a.youtube:hover{
    background: #bb0000;
}
.social-icons a.rss:hover{
    background: #ff6600;
}

#top-section .search-wrap{
    float: right;
    position: relative;
}

.search-wrap a:hover{
    background: #c5b358;
}

.searchform-wrap{
    width: 200px;
    top: 42px;
    right: 0;
    position: absolute;
    display: none;
}

.searchform-wrap form input{
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    color: #222;
    border: 1px solid #eee;
    outline: 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.searchform-wrap form input:focus{
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
}

@media (max-width: 480px){
    .social-icons a,
    .search-wrap a{
        width: 30px;
    }
}

/* ===== LOGO SECTION ===== */
#logo-section{
    text-align: center;
    padding: 60px 0;
}

#logo-section h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    line-height: 1;
    font-weight: normal;
}

#logo-section h1 a{
    color: #222;
    text-transform: uppercase;
}

#logo{
    display: inline-block;
    max-width: 100%;
}

#logo-section p{
    color: #c5b358;
}

@media (max-width: 480px){
    #logo-section h1{
        font-size: 40px;
    }
    #logo img{
        max-width: 80%;
    }
}

/* ===== MENU ===== */
#main-nav{
    background: #f7f7f7;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 100;
}

#main-menu li{
    display: inline-block;
    position: relative;
}

#main-menu li a{
    color: #222;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 0 15px;
    line-height: 60px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#main-menu li.current-menu-item > a,
#main-menu a:hover{
    color: #c5b358;
}

#main-menu > li.menu-item-has-children > ul.sub-menu{
    position: absolute;
    top: 100%;
    left: -20px;
    width: 180px;
    background: #f7f7f7;
    display: none;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#main-menu > li.menu-item-has-children:hover > ul.sub-menu{
    display: block;
    -webkit-animation: fadeInUp .3s ease-in;
    -moz-animation: fadeInUp .3s ease-in;
    animation: fadeInUp .3s ease-in;
}

#main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children ul.sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background: #f7f7f7;
    display: none;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover ul.sub-menu{
    display: block;
    -webkit-animation: fadeInRight .3s ease-in;
    -moz-animation: fadeInRight .3s ease-in;
    animation: fadeInRight .3s ease-in;
}

#main-menu li .sub-menu li{
    display: block;
}

#main-menu li .sub-menu a{
    line-height: 1.2;
    padding: 13px 4px;
    font-size: 11px;
    border-bottom: 1px solid #f1f1f1;
}

#mobile-menu-trigger{
    display: none;
    padding: 0 15px;
    line-height: 60px;
    color: #222;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#mobile-menu-trigger .fa{
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-right: 6px;
}

#mobile-menu-trigger:hover{
    color: #c5b358;
}

#mobile-menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
}

#mobile-menu-overlay .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

#mobile-menu-wrap{
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #f7f7f7;
    z-index: 100001;
    overflow-y: auto;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}

#mobile-menu-wrap.opened{
    left: 0;
}

#mobile-menu{
    position: relative;
    height: 100%;
    padding: 40px 0 0;
}

#close-mobile-menu{
    position: absolute;
    top: 0;
    right: 0;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    background: #222;
    padding: 0 20px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    height: 40px;
    display: block;
    z-index: 10;
}

#mobile-menu a{
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 14px 40px 14px 20px;
    line-height: 1;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

#mobile-menu a:hover,
#mobile-menu .current-menu-item > a{
    background: #ddd;
    color: #c5b358;
}

#mobile-menu li .submenu-toggle{
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #222;
    cursor: pointer;
    text-align: center;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

#mobile-menu li .submenu-toggle:hover{
    color: #c5b358;
    background: #ddd;
}

#mobile-menu li ul{
    position: absolute;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #f7f7f7;
    z-index: 100002;
    -webkit-transition: left .4s;
    -moz-transition: left .4s;
    -o-transition: left .4s;
    transition: left .4s;
}

#mobile-menu li ul ul{
    top: 0;
}

#mobile-menu li ul.opened{
    left: 0;
}

#mobile-menu li ul a{
    color: #222;
}

#mobile-menu li .close-submenu a{
    padding-left: 20px;
    background: #222;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 991px){
    #main-menu{
        display: none;
    }
    #mobile-menu-trigger{
        display: inline-block;
    }
}

/* ===== FEATURED POSTS ===== */
#featured-slider-wrap{
    width: 1040px;
    margin: 0 auto 60px;
    position: relative;
}

#featured-slider li{
    position: relative;
}

#featured-slider img{
    transform: translateZ(0);
    height: auto;
    max-width: 100%;
    display: block;
}

#featured-slider .textbox{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: translateZ(0);
    text-align: center;
}

#featured-slider .textbox .text{
    background: #fff;
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 30px 20px;
    min-width: 55%;
    max-width: 96%;
}

#featured-slider .textbox .text .text-inner{
    border: 1px solid #e1e1e1;
    padding: 0 15px 30px;
}

#featured-slider .categories{
    display: inline-block;
    padding: 0 15px;
    background: #fff;
    position: relative;
    top: -13px;
}

#featured-slider .categories a{
    display: inline-block;
    line-height: 26px;
    padding: 0 10px;
    margin: 0 1px;
    color: #fff;
    background: #c5b358;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#featured-slider .categories a:hover{
    text-decoration: underline;
    background: #222;
}

#featured-slider h2{
    margin-bottom: 7px;
}

#featured-slider h2 a{
    font-size: 24px;
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#featured-slider h2 a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#featured-slider .featured-meta{
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #222;
}

#featured-slider .featured-meta a{
    color: #c5b358;
}

#featured-slider .featured-meta .author a{
    border-bottom: 1px solid #c5b358;
    text-transform: uppercase;
}

#featured-slider .featured-meta .comments,
#featured-slider .featured-meta .author{
    display: inline-block;
}

#featured-slider-wrap .owl-controls{
    position: absolute;
    bottom: 40px;
    right: 40px;
}

#featured-slider-wrap .owl-controls .owl-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    margin-left: 5px;
}

#featured-slider-wrap .owl-controls .owl-dot.active{
    background: #c5b358;
}

@media (max-width: 1200px){
    #featured-slider-wrap{
        width: 940px;
    }
}

@media (max-width: 991px){
    #featured-slider-wrap{
        width: 100%;
        padding: 0 10px;
    }
    #featured-slider-wrap .owl-controls{
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 600px){
    #featured-slider-wrap{
        padding: 0;
    }
    #featured-slider .textbox .text .text-inner{
        padding: 15px;
    }
    #featured-slider .categories{
        display: none;
    }
    #featured-slider h2 a{
        font-size: 20px;
        line-height: 1.1;
    }
    #featured-slider-wrap .owl-controls{
        display: none;
    }
}

@media (max-width: 480px){
    #featured-slider .textbox .text{
        padding: 10px;
    }
    #featured-slider .textbox .text .text-inner{
        padding: 10px;
    }
    #featured-slider .featured-meta{
        font-size: 11px;
    }
     #featured-slider h2 a{
        font-size: 18px;
    }
}

/* ===== CONTENT WRAP ===== */
#content-wrap{
    margin-bottom: 60px;
}

#main-content{
    float: left;
    width: 680px;
}

#main-content.masonry-layout{
    width: 720px;
}

.sidebar-left #main-content{
    float: right;
}

.no-sidebar #main-content{
    float: none;
    margin: 0 auto;
    max-width: 680px;
    width: 100%;
}

.page-full-width #main-content{
    width: 100%;
}

.no-sidebar-grid #main-content,
.no-sidebar-masonry #main-content,
.no-sidebar-list #main-content{
    float: none;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

#sidebar{
    width: 300px;
    float: right;
}

.sidebar-left #sidebar{
    float: left;
}

#main-content.grid-layout .post,
#main-content.grid-layout .page.type-page{
    width: 320px;
    margin-right: 40px;
    float: left;
}

#main-content.grid-layout .post:nth-child(2n+2),
#main-content.grid-layout .page.type-page:nth-child(2n+2){
    margin-right: 0;
}

#main-content.grid-layout .post:nth-child(2n+3),
#main-content.grid-layout .page.type-page:nth-child(2n+3){
    clear: both;
}

.no-sidebar-grid #main-content.grid-layout .post,
.no-sidebar-grid #main-content.grid-layout .page.type-page{
    width: 320px;
    margin-right: 40px;
}

.no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+2),
.no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+2){
    margin-right: 40px;
}

.no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+3),
.no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+3){
    clear: none;
}

.no-sidebar-grid #main-content.grid-layout .post:nth-child(3n+3),
.no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(3n+3){
    margin-right: 0;
}

.no-sidebar-grid #main-content.grid-layout .post:nth-child(3n+4),
.no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(3n+4){
    clear: both;
}

#main-content.masonry-layout .post,
#main-content.masonry-layout .page.type-page{
    width: 320px;
    margin-right: 40px;
}

.sidebar-left #main-content.masonry-layout .post,
.sidebar-left #main-content.masonry-layout .page.type-page{
    margin-right: 0;
    margin-left: 40px;
}

#main-content.masonry-layout .post:nth-child(2n+2),
#main-content.masonry-layout .page.type-page:nth-child(2n+2){
    margin-right: 0;
}

.no-sidebar-masonry #main-content .post,
.no-sidebar-masonry #main-content .page.type-page{
    width: 30%;
    margin-left: 1.6666666666666667%;
    margin-right: 1.6666666666666667%;
}

#main-content.grid-layout .standard-plus-grid-standard .post{
    width: 100%;
}

.no-sidebar-grid #main-content.grid-layout .standard-plus-grid-standard .post{
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

@media (max-width: 1200px){
    #main-content{
        width: 600px;
    }
    #main-content.masonry-layout{
        width: 640px;
    }
    #main-content.grid-layout .post,
    #main-content.grid-layout .page.type-page{
        width: 280px;
    }
    #main-content.masonry-layout .post,
    #main-content.masonry-layout .page.type-page{
        width: 280px;
    }
    .no-sidebar-grid #main-content.grid-layout .post,
    .no-sidebar-grid #main-content.grid-layout .page.type-page{
        width: 286px;
    }
}

@media (max-width: 991px){
    #main-content,
    #main-content.masonry-layout{
        max-width: 740px;
        width: 100%;
        float: none;
        margin: 0 auto 40px;
    }
    .sidebar-left #main-content{
        float: none;
    }
    #main-content.masonry-layout{
        max-width: 770px;
    }
    #sidebar{
        max-width: 480px;
        width: 100%;
        float: none;
        margin: 0 auto;
    }
    .sidebar-left #sidebar{
        float: none;
    }
    #main-content.grid-layout .post,
    #main-content.grid-layout .page.type-page{
        width: 350px;
    }
    #main-content.masonry-layout .post,
    #main-content.masonry-layout .page.type-page{
        width: 350px;
        margin-left: 15px;
        margin-right: 15px;
    }    
    .sidebar-left #main-content.masonry-layout .post,
    .sidebar-left #main-content.masonry-layout .page.type-page{
        margin-left: 15px;
        margin-right: 15px;
    }
    .no-sidebar-grid #main-content.grid-layout .post,
    .no-sidebar-grid #main-content.grid-layout .page.type-page{
        width: 30%;
        margin-right: 5%;
    }
}

@media (max-width: 940px){
    #main-content.grid-layout .post,
    #main-content.grid-layout .page.type-page{
        width: 48%;
        margin-right: 4%;
    }
    .no-sidebar-grid #main-content.grid-layout .post,
    .no-sidebar-grid #main-content.grid-layout .page.type-page{
        width: 48%;
        margin-right: 4%;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(3n+3),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(3n+3){
        margin-right: 0;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+2),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+2){
        margin-right: 0;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+1),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+1){
        margin-right: 4%;
    }
    .no-sidebar-grid #main-content.grid-layout .standard-plus-grid-standard .post{
        margin-right: auto;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(3n+4),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(3n+4){
        clear: none;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+3),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+3){
        clear: both;
    }
}

@media (max-width: 810px){
    #main-content.masonry-layout .post,
    .sidebar-left #main-content.masonry-layout .post,
    #main-content.masonry-layout .page.type-page,
    .sidebar-left #main-content.masonry-layout .page.type-page{
        width: 46%;
        margin-right: 2%;
        margin-left: 2%;
    }
    .no-sidebar-masonry #main-content .post,
    .no-sidebar-masonry #main-content .page.type-page{
        width: 46%;
        margin-left: 2%;
        margin-right: 2%;
    }
}

@media (max-width: 600px){
    #main-content.grid-layout .post,
    #main-content.grid-layout .page.type-page{
        width: 90%;
        margin: 0 auto 40px;
        float: none;
    }
    #main-content.grid-layout .post:nth-child(2n+2),
    #main-content.grid-layout .page.type-page:nth-child(2n+2){
        margin-right: auto;
    }
    #main-content.masonry-layout .post,
    .sidebar-left #main-content.masonry-layout .post,
    #main-content.masonry-layout .page.type-page,
    .sidebar-left #main-content.masonry-layout .page.type-page{
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
    .no-sidebar-grid #main-content.grid-layout .post,
    .no-sidebar-grid #main-content.grid-layout .page.type-page{
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(3n+3),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(3n+3){
        margin-right: 5%;
        margin-left: 5%;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+2),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+2){
        margin-right: 5%;
        margin-left: 5%;
    }
    .no-sidebar-grid #main-content.grid-layout .post:nth-child(2n+1),
    .no-sidebar-grid #main-content.grid-layout .page.type-page:nth-child(2n+1){
        margin-right: 5%;
        margin-left: 5%;
    }
    .no-sidebar-masonry #main-content .post,
    .no-sidebar-masonry #main-content .page.type-page{
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
    .no-sidebar-grid #main-content.grid-layout .standard-plus-grid-standard .post,
    .no-sidebar-grid #main-content.grid-layout .standard-plus-grid-standard .page.type-page{
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== POST ===== */
.post,
.single-page-type,
#main-content .type-page{
    border-top: 1px solid #ddd;
    text-align: center;
    margin-bottom: 55px;
    color: #222;
    position: relative;
}

.post .sticky{
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

#main-content .type-page{
    padding-top: 20px;
}

.list-layout .post{
    border-bottom: 1px solid #ddd;
    border-top: 0;
}

.list-layout .post:last-child{
    border-bottom: 0;
}

.post.post-list .post-image-box{
    float: left;
    width: 36.76%;
}

.post.post-list .post-list-box-info{
    float: right;
    width: 60.44%;
    border-top: 1px solid #ddd;
    margin-top: 15px;
    text-align: left;
}

.post.post-list .post-list-box-info-full{
    width: 100%;
}

.post .categories{
    display: inline-block;
    padding: 0 15px;
    background: #fff;
    position: relative;
    top: -13px;
}

.post.post-list .post-list-box-info .categories{
    padding: 0 10px 0 0;
}

.post .categories a{
    display: inline-block;
    line-height: 26px;
    padding: 0 10px;
    margin: 0 1px 1px 1px;
    color: #fff;
    background: #c5b358;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.post .categories a:hover{
    text-decoration: underline;
    background: #222;
}

.post h2.post-title,
#main-content .type-page h2.post-title{
    margin-bottom: 7px;
    font-size: 24px;
}

.post.post-list .post-list-box-info h2.post-title{
    margin-top: -7px;
}

.post h2.post-title a,
#main-content .type-page h2.post-title a{
    font-size: 24px;
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.post h2.post-title a:hover,
#main-content .type-page h2.post-title a:hover{
    color: #c5b358;
    text-decoration: underline;
}

.post .post-meta,
#main-content .type-page .post-meta{
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.post .post-meta a,
#main-content .type-page .post-meta a{
    color: #c5b358;
}

.post .post-meta .author a,
#main-content .type-page .post-meta .author a{
    border-bottom: 1px solid #c5b358;
    text-transform: uppercase;
}

.post .post-meta .author,
#main-content .type-page .post-meta .author,
.post .post-meta .comments,
#main-content .type-page .post-meta .comments{
    display: inline-block;
}

.post .post-image-box{
    margin-bottom: 17px;
}

.post .post-excerpt,
#main-content .type-page .post-excerpt{
    text-align: left;
    margin-bottom: 17px;
    font-size: 16px;
}

.share-and-more,
.post-share{
    background: #f7f7f7;
    line-height: 40px;
}

.share-and-more .post-share{
    float: left;
    padding-left: 10px;
}

.share-and-more .read-more-wrap{
    float: right;
}

.grid-layout .share-and-more .read-more-wrap,
.masonry-layout .share-and-more .read-more-wrap,
.no-sidebar-masonry .share-and-more .read-more-wrap{
    width: 100%;
    margin-top: 1px;
    display: none;
}

.grid-layout .standard-plus-grid-standard .share-and-more .read-more-wrap{
    width: auto;
    display: block;
}

.share-and-more .post-share a,
.post-share a{
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #222;
    margin-right: -4px;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.share-and-more .post-share a:hover,
.post-share a:hover{
    color: #fff;
    background: #c5b358;
}

.share-and-more .read-more-wrap a.read-more{
    display: block;
    padding: 0 10px;
    background: #c5b358;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.share-and-more .read-more-wrap a.read-more:hover{
    background: #222;
}

@media (max-width: 480px){
    .share-and-more .read-more-wrap,
    .grid-layout .standard-plus-grid-standard .share-and-more .read-more-wrap{
        width: 100%;
        margin-top: 1px;
    }
    .post.post-list .post-list-box-info h2.post-title a{
        font-size: 20px;
    }
}

/* ===== PAGINATION ===== */
.pagination.loop-pagination{
    text-align: center;
}

.pagination.loop-pagination .page-numbers{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f7f7f7;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.pagination.loop-pagination a.page-numbers:hover{
    background: #222;
    color: #fff;
}

.pagination.loop-pagination .page-numbers.current{
    background: #222;
    color: #fff;
}

.pagination.loop-pagination .page-numbers.next{
    margin-left: 10px;
}
.pagination.loop-pagination .page-numbers.prev{
    margin-right: 10px;
}

.pagination.loop-pagination .page-numbers.next .fa-angle-left{
    display: none;
}
.pagination.loop-pagination .page-numbers.prev .fa-angle-right{
    display: none;
}

/* ===== POST SINGLE ===== */
.post-content-box{
    text-align: left;
    font-size: 16px;
}

.post-content-box iframe{
    display: block;
    max-width: 100%;
}

.post-content-box p{
    margin: 0 0 15px;
}

.post-content-box p strong{
    font-weight: 700;
}

.post-content-box h1,
.post-content-box h2,
.post-content-box h3,
.post-content-box h4,
.post-content-box h5,
.post-content-box h6{
    margin: 0 0 15px;
}

.post-content-box h1{
    font-size: 24px;
}

.post-content-box h2{
    font-size: 22px;
}

.post-content-box h3{
    font-size: 20px;
}

.post-content-box h4{
    font-size: 18px;
}

.post-content-box h5{
    font-size: 16px;
}

.post-content-box h6{
    font-size: 14px;
}

.post-content-box ul,
.post-content-box ol{
    list-style: disc;
    margin: 0 0 30px 20px;
}

.post-content-box ol{
    list-style: decimal;
}

.post-content-box ul li ul,
.post-content-box ol li ol{
    margin-bottom: 0;
}

.post-content-box dl{
    margin-bottom: 30px;
}

.post-content-box dl dd{
    margin-left: 20px;
}

.post-content-box .alignright{
    float: right;
    margin: 10px 0 10px 30px;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .alignleft{
    float: left;
    margin: 10px 30px 10px 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .aligncenter{
    margin: 10px auto 10px;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .alignnone{
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 10px 0 10px;
}

.post-content-box .wp-caption img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.post-content-box .wp-caption-text,
.post-content-box .gallery-caption{
    font-size: 12px;
    padding: 10px;
    display: block;
    text-align: center;
    margin: 0;
}

.post-content-box .wp-caption-text{
    background: none;
    color: #222;
}

.post-content-box .gallery-caption{
    background: rgba(0,0,0,0.4) !important;
    color: #fff !important;
}

.post-content-box blockquote{
    margin: 0 0 30px 0;
    padding: 15px;
    border-left: 5px solid #c5b358;
    font-style: italic;
    background: #f7f7f7;
}

.post-content-box blockquote p{
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.post-content-box blockquote p cite{
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    color: #c5b358;
    display: block;
}

.post-content-box hr{
    border-color: #c5b358;
    margin: 10px 0 15px;
    max-width: 80px;
}

.post-content-box address{
    padding: 20px;
    background: #222;
    color: #fff;
    margin-bottom: 30px;
}

.post-content-box a{
    color: #c5b358;
}

.post-content-box a:hover{
    text-decoration: underline;
}

.post-content-box pre{
    background: #222;
    color: #fff;
    overflow-x: scroll;
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
}

.post-content-box table{
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.post-content-box table th,
.post-content-box table td{
    padding: 10px 5px;
    border: 1px solid #ddd;
}

.post-content-box .gallery{
    margin-bottom: 20px !important;
}

.post-content-box .gallery{
    clear: both;
}

.post-content-box .gallery img{
    width: 100%;
}

.post-content-box .gallery-item{
    padding: 0 1px 1px 0;
    margin: 0 0 1px !important;
    display: block !important;
    position: relative;
}

.post-content-box .gallery-icon a{
    display: block;
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.post-content-box .gallery-icon a:hover{
    opacity: 0.8;
}

.post-content-box .gallery-icon img{
    border: 0 !important;
    display: block;
    height: auto;
}

.post-content-box .gallery-item .gallery-caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.post-content-box .gallery-columns-5 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-6 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-7 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-8 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-9 .gallery-item .gallery-caption{
    position: static;
    background: #222;
}

.post-password-form input[type="password"]{
    border: 1px solid #222;
    padding: 8px 10px;
    color: #222;
}

.post-password-form input[type="submit"]{
    border: 1px solid #c5b358;
    width: 150px;
    height: 33px;
    background: none;
    color: #c5b358;
    cursor: pointer;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.post-password-form input[type="submit"]:hover{
    background: #c5b358;
    color: #fff;
}

.post-content-box .page-links{
    padding: 20px 0 0;
}

.post-content-box .page-links > span.page-links-link,
.post-content-box .page-links > a{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 2px;
}

.post-content-box .page-links > a{
    background: #c5b358;
    color: #fff;
}

.post .tags{
    margin-bottom: 20px;
    text-align: left;
    font-size: 16px;
}

.post .tags a{
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.post .tags a:hover{
    color: #c5b358;
    text-decoration: underline;
}

@media (max-width: 480px){
    .post-content-box .gallery-item .gallery-caption{
        display: none;
    }
}

/* ===== SINGLE POST NAVIGATION ===== */
#post-navigation{
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

#post-navigation .left{
    width: 50%;
    float: left;
    padding: 0 10px;
}

#post-navigation .left .fa-long-arrow-left{
    margin-right: 10px;
}
#post-navigation .left .fa-long-arrow-right{
    display: none;
}

#post-navigation .right{
    width: 50%;
    float: right;
    padding: 0 10px;
    border-left: 2px solid #ddd;
}

#post-navigation .right .fa-long-arrow-right{
    margin-left: 10px;
}
#post-navigation .right .fa-long-arrow-left{
    display: none;
}

#post-navigation .block{
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#post-navigation a{
    display: block;
    color: #ddd;
    text-align: center;
    padding: 20px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#post-navigation a:hover{
    color: #222;
}

@media (max-width: 480px){
    #post-navigation .left,
    #post-navigation .right{
        width: 100%;
        border: 0;
    }
    #post-navigation .right{
        border-top: 2px solid #ddd;
    }
}

/* ===== WRITTEN BY ===== */
#written-by{
    color: #222;
    min-height: 180px;
    margin-bottom: 30px;
    font-size: 16px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.written-by{
    position: relative;
    padding-right: 180px;
}

.written-by .image-box{
    position: absolute;
    top: 0;
    right: 0;
}

.written-by .image-box{
    max-width: 100%;
    display: block;
}

.written-by .info p.author-name{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.written-by .info p.author-name span{
    text-transform: capitalize;
}

.written-by .info p.desc{
    margin-bottom: 15px;
}

.written-by .info .follow a{
    display: inline-block;
    margin: 0 2px 4px;
    color: #222;
    padding: 0 5px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.written-by .info .follow a:hover{
    color: #c5b358;
}

@media (max-width: 480px){
    .written-by{
        padding-right: 0;
    }
    .written-by .image-box{
        position: static;
        text-align: center;
    }
    .written-by .info p.author-name{
        text-align: center;
    }
}

/* ===== RELATED POSTS ===== */
#related-posts{
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

#related-posts h3{
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 15px;
    font-size: 16px;
}

#related-posts img,
#related-post img{
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
}

#related-posts .image-box{
    position: relative;
    margin-bottom: 10px;
}

#related-posts p.title{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 5px;
}

#related-posts p.title a{
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#related-posts p.title a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#related-posts p.date{
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #c5b358;
}

.owl-carousel-related-wrap{
    position: relative;
}

#related-post .item {
    max-width: 220px;
}

#related-post .item .image-box{
    height: 130px;
    background: #f7f7f7;
}

/* ========== COMMENTS ========== */
.comments-wrap{
    color: #222;
    margin-bottom: 30px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.comments-wrap h2.comments-title{
    font-weight: 600;
    margin-bottom: 30px;
}

.comment-body{
    position: relative;
    padding-left: 100px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    min-height: 110px;
}

.pingback .comment-body{
    padding-left: 0;
    min-height: 1px;
}

.pingback .comment-body a{
    color: #c5b358;
}

.comment-list .comment-body p{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.comment-list > .comment:last-child .comment-body:last-child p{
    border: 0;
}

.comment-body .comment-author .says{
    display: none;
}

.comment-body .comment-author cite.fn{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    padding-right: 50px;
}

.bypostauthor > .comment-body .comment-author cite.fn,
.comment-body .comment-author cite.fn a{
    color: #c5b358;
}

.comment-body .comment-author img{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 90px;
}

.comment-body .comment-meta{
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #c5b358;
    margin-bottom: 15px;
}

.comment-body .comment-meta a{
    color: #c5b358;
}

.comment-body .comment-meta a.comment-edit-link{
    color: #c5b358;
}

.comment-body > p a{
    color: #c5b358;
}

.comment-body > blockquote{
    font-style: italic;
    padding: 5px 20px;
    position: relative;
}

.comment-body > blockquote:before{
    content: '\f10d';
    font-family: 'FontAwesome';
    font-size: 12px;
    position: absolute;
    top: 3px;
    left: 0;
}

.comment-body .reply{
    position: absolute;
    top: 0;
    right: 0;
}

.comment-body .reply a{
    font-style: italic;
    color: #222;
    text-decoration: underline;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.comment-body .reply a:hover{
    color: #c5b358;
    text-decoration: none;
}

.comment-body .comment-awaiting-moderation{
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
}

.comment .children{
    margin-left: 30px;
}

.comment-navigation{
    padding: 0 0 20px;
}

#comment-nav-above{
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

#comment-nav-below{
    border-top: 1px solid #ddd;
    padding: 20px 0 0;
}

.comment-navigation h1{
    margin-bottom: 10px; 
}

.comment-navigation .nav-previous{
    float: left;
}

.comment-navigation .nav-next{
    float: right;
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a{
    color: #c5b358;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover{
    color: #222;
}

@media (max-width: 600px){
    .comment-body{
        padding-left: 80px;
        min-height: 80px;
    }
    .comment-body .comment-author img{
        width: 60px;
        height: 60px;
    }
    .comment .children{
        margin-left: 15px;
    }
}

@media (max-width: 480px){
    .comment-body{
        padding-left: 60px;
        min-height: 60px;
    }
    .comment-body .comment-author img{
        width: 40px;
        height: 40px;
    }
    .comment .children{
        margin-left: 5px;
    }
}

/* ===== RESPOND ===== */
#respond{
    color: #222;
    font-size: 16px;
    margin: 0 0 30px;
}

#respond h3{
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 15px;
}

#respond h3 small{
    font-size: 14px;
}

#respond h3 small a{
    color: #c5b358;
}

.comment-notes,
.logged-in-as{
    margin-bottom: 15px;
    font-size: 14px;
}

.logged-in-as a{
    color: #c5b358;
}

.logged-in-as a:hover{
    text-decoration: underline;
}

.name-email-url-box .comment-form-author,
.name-email-url-box .comment-form-email,
.name-email-url-box .comment-form-url{
    float: left;
    width: 32%;
    margin-right: 2%;
}

.name-email-url-box .comment-form-url{
    margin-right: 0;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label{
    display: inline-block;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea{
    font-size: 16px;
    color: #222;
    border: 1px solid #ddd;
    padding: 10px;
    outline: 0;
    display: block;
    max-width: 360px;
    width: 100%;
    margin-bottom: 15px;
    -webkit-transition: box-shadow .3s;
    -moz-transition: box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
}

.comment-form-url input,
.comment-form-comment textarea{
    max-width: 100%;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus{
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#respond .form-submit input{
    display: inline-block;
    border: 0;
    outline: 0;
    padding: 0 20px;
    height: 40px;
    background: #c5b358;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#respond .form-submit input:hover{
    background: #222;
}

@media (max-width: 480px){
    .name-email-url-box .comment-form-author,
    .name-email-url-box .comment-form-email,
    .name-email-url-box .comment-form-url{
        width: 100%;
        margin: 0 0 10px 0;
    }
}

/* ===== CUSTOM BOX ===== */
#custom-box{
    background: #f7f7f7;
    padding: 20px;
    text-align: center;
    margin-bottom: 55px;
}

.masonry-layout #custom-box{
    margin-right: 40px;
}
.sidebar-left .masonry-layout #custom-box{
    margin-right: 0;
    margin-left: 40px;
}

#custom-box p{
    font-size: 14px;
    font-style: italic;
    color: #c5b358;
}

#custom-box p span{
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    color: #222;
}

/* ===== ERROR 404 & SEARCH NO RESULTS ===== */
#error-404,
#page-no-results-content{
    color: #222;
    text-align: center;
    padding: 100px 10px;
    border: 1px solid #ddd;
}

#page-no-results-content{
    border: 0;
    padding: 0;
}

#error-404 h2,
#page-no-results-content p.title{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

#error-404 p,
#page-no-results-content p{
    margin: 0 0 20px;
}

#error-404 form,
#page-no-results-content form{
    position: relative;
    max-width: 480px;
    padding-right: 40px;
    margin: 0 auto;
}

#error-404 form input,
#page-no-results-content form input{
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    outline: 0;
}

#error-404 form button,
#page-no-results-content form button{
    display: block;
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #222;
    border: 0;
    outline: 0;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#error-404 form button:hover,
#page-no-results-content form button:hover{
    background: #c5b358;
}

.image-attachment-box img{
    max-width: 100%;
}

/* ===== GALLERY POST FORMAT ===== */
.post .post-image-box .owl-controls{
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.post .post-image-box .owl-controls .owl-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    margin-left: 5px;
}

.post .post-image-box .owl-controls .owl-dot.active{
    background: #c5b358;
}

/* ===== CONTACT FORM 7 ===== */
.wpcf7 .wpcf7-form-control-wrap input[type="text"],
.wpcf7 .wpcf7-form-control-wrap input[type="email"],
.wpcf7 .wpcf7-form-control-wrap textarea{
    border: 1px solid #ddd;
    outline: 0;
    color: #222;
    padding: 8px 10px;
    display: block;
    max-width: 360px;
    width: 100%;
    font-size: 16px;
}

.wpcf7 .wpcf7-form-control-wrap input[type="text"]:focus,
.wpcf7 .wpcf7-form-control-wrap input[type="email"]:focus,
.wpcf7 .wpcf7-form-control-wrap textarea:focus{
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.wpcf7 .wpcf7-form-control-wrap textarea{
    max-width: 100%;
}

.wpcf7 input[type="submit"]{
    display: inline-block;
    padding: 0 40px;
    height: 40px;
    background: #222;
    border: 0;
    margin: 0 0 20px;
    color: #fff;
    outline: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.wpcf7 input[type="submit"]:hover{
    background: #c5b358;
}

/* ===== SIDEBAR WIDGETS ===== */
#sidebar{
    color: #222;
}

#sidebar .widget{
    background: #f7f7f7;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

#sidebar .widget-title{
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 9px 5px 8px;
    margin-bottom: 5px;
}

#sidebar .widget-title a{
    color: #222;
}

#sidebar .widget_archive ul,
#sidebar .widget_categories ul,
#sidebar .widget_nav_menu ul,
#sidebar .widget_meta ul,
#sidebar .widget_pages ul{
    padding: 0 20px;
}

#sidebar .widget_nav_menu ul,
#sidebar .widget_pages ul{
    padding: 10px 20px 0;
}

#sidebar .widget_archive ul li,
#sidebar .widget_categories ul li,
#sidebar .widget_nav_menu ul li,
#sidebar .widget_meta ul li,
#sidebar .widget_pages ul li{
    border-bottom: 1px dashed #ddd;
}

#sidebar .widget_nav_menu ul li.menu-item-has-children{
    border: 0;
}

#sidebar .widget_nav_menu ul .sub-menu{
    padding-top: 10px;
    padding-left: 10px;
    border-top: 1px dashed #ddd;
}

#sidebar .widget_archive ul li a,
#sidebar .widget_categories ul li a,
#sidebar .widget_nav_menu ul li a,
#sidebar .widget_meta ul li a,
#sidebar .widget_pages ul li a{
    display: inline-block;
    color: #222;
    padding: 7px 0;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_archive ul li a:hover,
#sidebar .widget_categories ul li a:hover,
#sidebar .widget_nav_menu ul li a:hover,
#sidebar .widget_meta ul li a:hover,
#sidebar .widget_pages ul li a:hover{
    color: #c5b358;
}

#sidebar .widget_archive ul li a:before,
#sidebar .widget_categories ul li a:before,
#sidebar .widget_nav_menu ul li a:before,
#sidebar .widget_meta ul li a:before,
#sidebar .widget_pages ul li a:before{
    content: '\f101';
    font-family: 'FontAwesome';
    margin-right: 10px;
    -webkit-transition: margin-right .3s;
    -moz-transition: margin-right .3s;
    -o-transition: margin-right .3s;
    transition: margin-right .3s;
}

#sidebar .widget_archive ul li a:hover:before,
#sidebar .widget_categories ul li a:hover:before,
#sidebar .widget_nav_menu ul li a:hover:before,
#sidebar .widget_meta ul li a:hover:before,
#sidebar .widget_pages ul li a:hover:before{
    margin-right: 20px;
}

#sidebar .widget_archive select,
#sidebar .widget_categories select{
    display: block;
    padding: 10px;
    margin: 20px 6.67% 0;
    width: 86.66%;
    border: 0;
}

#sidebar .widget_calendar #calendar_wrap{
    padding: 0 20px;
}

#sidebar .widget_calendar #wp-calendar{
    width: 100%;
}

#sidebar .widget_calendar #wp-calendar caption{
    padding: 10px 0;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

#sidebar .widget_calendar #wp-calendar thead tr th{
    padding: 10px 0;
    text-align: center;
    padding: 5px;
}

#sidebar .widget_calendar #wp-calendar td{
    padding: 5px;
    text-align: center;
}

#sidebar .widget_calendar #wp-calendar tbody td a{
    color: #c5b358;
}

#sidebar .widget_calendar #wp-calendar tbody td#today{
    background: #c5b358;
    color: #fff;
}

#sidebar .widget_calendar #wp-calendar tbody td#today a{
    color: #fff;
}

#sidebar .widget_calendar #wp-calendar tfoot td#prev a,
#sidebar .widget_calendar #wp-calendar tfoot td#next a{
    color: #c5b358;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_calendar #wp-calendar tfoot td#prev{
    text-align: left;
}

#sidebar .widget_calendar #wp-calendar tfoot td#next{
    text-align: right;
}

#sidebar .widget_recent_comments ul{
    padding: 10px 20px 0;
}

#sidebar .widget_recent_comments ul li{
    border-bottom: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#sidebar .widget_recent_comments ul li:last-child{
    margin-bottom: 0;
}

#sidebar .widget_recent_comments ul li .comment-author-link{
    color: #c5b358;
    text-transform: uppercase;
    display: inline-block;
}

#sidebar .widget_recent_comments ul li a{
    display: block !important;
    color: #222;
    font-size: 16px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_recent_comments ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_recent_entries ul{
    padding: 10px 20px 0;
}

#sidebar .widget_recent_entries ul li{
    border-bottom: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#sidebar .widget_recent_entries ul li:last-child{
    margin-bottom: 0;
}

#sidebar .widget_recent_entries ul li a{
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_recent_entries ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_recent_entries ul li span{
    display: block;
    font-size: 12px;
    color: #c5b358;
}

#sidebar .widget_rss ul{
    padding: 10px 20px 0;
}

#sidebar .widget_rss ul li{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#sidebar .widget_rss ul li:last-child{
    margin-bottom: 0;
}

#sidebar .widget_rss ul li a{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_rss ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_rss ul li span.rss-date{
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #c5b358;
}

#sidebar .widget_rss ul li div.rssSummary{
    padding: 5px 0;
    font-size: 15px;
}

#sidebar .widget_search{
    background: none;
    padding: 0;
}

#sidebar .widget_search form{
    border: 1px solid #ddd;
    padding: 0 20px;
    position: relative;
}

#sidebar .widget_search form input{
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 11px 0;
}

#sidebar .widget_search form button{
    background: none;
    border: 0;
    outline: 0;
    width: 20px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 20px;
    display: block;
    cursor: pointer;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_search form button:hover{
    color: #c5b358;
}

#sidebar .widget_tag_cloud .tagcloud{
    padding: 10px 20px 0;
}

#sidebar .widget_tag_cloud a{
    color: #222;
    font-size: 14px !important;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    margin: 0 0 4px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_tag_cloud a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_text .textwidget{
    padding: 10px 20px 0;
}

#sidebar .widget_text .textwidget a{
    color: #c5b358;
}

#sidebar .widget_text .textwidget img{
    max-width: 100%;
    height: auto;
}

#sidebar .widget_about_with_image{
    text-align: center;
}

#sidebar .widget_about_with_image .widget-about-image{
    padding: 10px 20px 0;
}

#sidebar .widget_about_with_image .widget-about-image img{
    border-radius: 200px;
}

#sidebar .widget_about_with_image p{
    padding: 10px 20px 0;
}

#sidebar .widget_recent_posts_with_thumb ul{
    padding: 10px 20px 0;
}

#sidebar .widget_recent_posts_with_thumb ul li{
    position: relative;
    min-height: 80px;
    padding-left: 90px;
    margin-bottom: 20px;
}

#sidebar .widget_recent_posts_with_thumb ul li:last-child{
    margin-bottom: 0;
}

#sidebar .widget_recent_posts_with_thumb ul li .thumb{
    position: absolute;
    left: 0;
    top: 0;
}

#sidebar .widget_recent_posts_with_thumb ul li .thumb a{
    display: block;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#sidebar .widget_recent_posts_with_thumb ul li .thumb a:hover{
    opacity: 0.8;
}

#sidebar .widget_recent_posts_with_thumb ul li p.title{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

#sidebar .widget_recent_posts_with_thumb ul li p.title a{
    color: #222;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_recent_posts_with_thumb ul li p.title a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_recent_posts_with_thumb ul li p.recent-date{
    font-size: 12px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

#sidebar .widget_social{
    padding-bottom: 10px;
}

#sidebar .widget_social .social-icons-wrap{
    padding: 10px 20px 0;
    text-align: center;
}

#sidebar .widget_social .social-icons-wrap a{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 6px 10px 0;
    line-height: 40px;
    color: #fff;
    background: #ddd;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#sidebar .widget_social .social-icons-wrap a:hover{
    background: #c5b358;
}

#sidebar .widget_recent_comments_with_time ul{
    padding: 10px 20px 0;
}

#sidebar .widget_recent_comments_with_time ul li{
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

#sidebar .widget_recent_comments_with_time ul li:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}

#sidebar .widget_recent_comments_with_time ul .comment-author-time{
    position: relative;
    padding-right: 100px;
}

#sidebar .widget_recent_comments_with_time ul .comment-author-time .comment-time{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-style: italic;
}

#sidebar .widget_recent_comments_with_time ul .comment-author-time .comment-author-link{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #c5b358;
}

#sidebar .widget_recent_comments_with_time ul .comment-author-time .comment-author-link span{
    text-transform: none;
    color: #222;
}

#sidebar .widget_recent_comments_with_time ul li a{
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0 15px;
    display: inline-block;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#sidebar .widget_recent_comments_with_time ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .null-instagram-feed ul{
    padding: 10px 20px 0;
}

#sidebar .null-instagram-feed ul li{
    width: 48%;
    margin-right: 4%;
    margin-bottom: 10px;
    display: block;
    float: left;
}

#sidebar .null-instagram-feed ul li img{
    display: block;
}

#sidebar .null-instagram-feed ul li:nth-child(2n+2){
    margin-right: 0;
}

#sidebar .null-instagram-feed ul li:nth-child(2n+3){
    clear: left;
}

#sidebar .null-instagram-feed ul li a{
    display: block;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#sidebar .null-instagram-feed ul li a:hover{
    opacity: 0.8;
}

#sidebar .null-instagram-feed p.clear{
    clear: both;
    padding: 0 20px;
}

#sidebar .null-instagram-feed p.clear a{
    color: #c5b358;
    text-decoration: underline;
}

#sidebar .widget_quote_of_the_day .quote-of-the-day-box{
    padding: 10px 20px 0;
    position: relative;
}

#sidebar .widget_quote_of_the_day .quote-of-the-day-box p.quote-text{
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

#sidebar .widget_quote_of_the_day .quote-of-the-day-box p.quote-author{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #c5b358;
    position: relative;
    z-index: 1;
}

#sidebar .widget_quote_of_the_day .quote-of-the-day-box .fa{
    font-size: 48px;
    color: #ddd;
    position: absolute;
    bottom: 0;
    right: 20px;
}

#sidebar .jetpack_subscription_widget form{
    padding: 10px 20px 0;
}

#sidebar .jetpack_subscription_widget form #subscribe-text{
    margin-bottom: 10px;
}

#sidebar .jetpack_subscription_widget form #subscribe-email input{
    display: block;
    width: 100%;
    border: 1px solid #fff;
    padding: 10px;
    outline: 0;
    margin-bottom: 10px;
}

#sidebar .jetpack_subscription_widget form #subscribe-submit input{
    display: block;
    width: 100%;
    height: 40px;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #ddd;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#sidebar .jetpack_subscription_widget form #subscribe-submit input:hover{
    background: #222;
}

/* ===== FOOTER WIDGETS ===== */
#footer-widgets-area{
    background: #222;
    color: #fff;
    padding: 30px 0 0;
}

#footer-widgets-area .footer-widgets{
    float: left;
    width: 30.8%;
    margin-right: 3.8%;
}

#footer-widgets-area .footer-widgets:last-child{
    margin-right: 0;
}

#footer-widgets-area .widget{
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#footer-widgets-area .widget-title{
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 9px 0 8px;
    margin-bottom: 7px;
}

#footer-widgets-area .widget-title a{
    color: #fff;
}

#footer-widgets-area .widget_archive ul li,
#footer-widgets-area .widget_categories ul li,
#footer-widgets-area .widget_nav_menu ul li,
#footer-widgets-area .widget_meta ul li,
#footer-widgets-area .widget_pages ul li{
    border-bottom: 1px solid #ddd;
}

#footer-widgets-area .widget_nav_menu ul li.menu-item-has-children{
    border: 0;
}

#footer-widgets-area .widget_nav_menu ul .sub-menu{
    padding-top: 10px;
    padding-left: 10px;
    border-top: 1px solid #ddd;
}

#footer-widgets-area .widget_archive ul li a,
#footer-widgets-area .widget_categories ul li a,
#footer-widgets-area .widget_nav_menu ul li a,
#footer-widgets-area .widget_meta ul li a,
#footer-widgets-area .widget_pages ul li a{
    display: inline-block;
    color: #fff;
    padding: 7px 0;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_archive ul li a:hover,
#footer-widgets-area .widget_categories ul li a:hover,
#footer-widgets-area .widget_nav_menu ul li a:hover,
#footer-widgets-area .widget_meta ul li a:hover,
#footer-widgets-area .widget_pages ul li a:hover{
    color: #c5b358;
}

#footer-widgets-area .widget_archive ul li a:before,
#footer-widgets-area .widget_categories ul li a:before,
#footer-widgets-area .widget_nav_menu ul li a:before,
#footer-widgets-area .widget_meta ul li a:before,
#footer-widgets-area .widget_pages ul li a:before{
    content: '\f101';
    font-family: 'FontAwesome';
    margin-right: 10px;
    -webkit-transition: margin-right .3s;
    -moz-transition: margin-right .3s;
    -o-transition: margin-right .3s;
    transition: margin-right .3s;
}

#footer-widgets-area .widget_archive ul li a:hover:before,
#footer-widgets-area .widget_categories ul li a:hover:before,
#footer-widgets-area .widget_nav_menu ul li a:hover:before,
#footer-widgets-area .widget_meta ul li a:hover:before,
#footer-widgets-area .widget_pages ul li a:hover:before{
    margin-right: 20px;
}

#footer-widgets-area .widget_archive select,
#footer-widgets-area .widget_categories select{
    display: block;
    padding: 10px;
    margin: 20px 0 0;
    width: 100%;
    border: 0;
}

#footer-widgets-area .widget_calendar #wp-calendar{
    width: 100%;
}

#footer-widgets-area .widget_calendar #wp-calendar caption{
    padding: 10px 0;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

#footer-widgets-area .widget_calendar #wp-calendar thead tr th{
    padding: 10px 0;
    text-align: center;
    padding: 5px;
}

#footer-widgets-area .widget_calendar #wp-calendar td{
    padding: 5px;
    text-align: center;
}

#footer-widgets-area .widget_calendar #wp-calendar tbody td a{
    color: #c5b358;
}

#footer-widgets-area .widget_calendar #wp-calendar tbody td#today{
    background: #c5b358;
    color: #fff;
}

#footer-widgets-area .widget_calendar #wp-calendar tbody td#today a{
    color: #fff;
}

#footer-widgets-area .widget_calendar #wp-calendar tfoot td#prev a,
#footer-widgets-area .widget_calendar #wp-calendar tfoot td#next a{
    color: #c5b358;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_calendar #wp-calendar tfoot td#prev{
    text-align: left;
}

#footer-widgets-area .widget_calendar #wp-calendar tfoot td#next{
    text-align: right;
}

#footer-widgets-area .widget_recent_comments ul li{
    border-bottom: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#footer-widgets-area .widget_recent_comments ul li:last-child{
    margin-bottom: 0;
}

#footer-widgets-area .widget_recent_comments ul li .comment-author-link{
    color: #c5b358;
    text-transform: uppercase;
}

#footer-widgets-area .widget_recent_comments ul li a{
    display: block !important;
    color: #fff;
    font-size: 16px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_recent_comments ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_recent_entries ul li{
    border-bottom: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#footer-widgets-area .widget_recent_entries ul li:last-child{
    margin-bottom: 0;
}

#footer-widgets-area .widget_recent_entries ul li a{
    color: #fff;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_recent_entries ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_recent_entries ul li span{
    display: block;
    font-size: 12px;
    color: #c5b358;
}

#footer-widgets-area .widget_rss ul li{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#footer-widgets-area .widget_rss ul li:last-child{
    margin-bottom: 0;
}

#footer-widgets-area .widget_rss ul li a{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_rss ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_rss ul li span.rss-date{
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #c5b358;
}

#footer-widgets-area .widget_rss ul li div.rssSummary{
    padding: 5px 0;
    font-size: 15px;
}

#footer-widgets-area .widget_search{
    background: none;
    padding: 0;
}

#footer-widgets-area .widget_search form{
    border: 1px solid #ddd;
    padding: 0 20px;
    padding-right: 20px;
    position: relative;
}

#footer-widgets-area .widget_search form input{
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 11px 0;
    background: none;
    color: #fff;
}

#footer-widgets-area .widget_search form button{
    background: none;
    color: #fff;
    border: 0;
    width: 20px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 20px;
    display: block;
    cursor: pointer;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_search form button:hover{
    color: #c5b358;
}

#footer-widgets-area .widget_tag_cloud a{
    color: #fff;
    font-size: 14px !important;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    margin: 0 0 4px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_tag_cloud a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_text .textwidget a{
    color: #c5b358;
}

#footer-widgets-area .widget_text .textwidget img{
    max-width: 100%;
    height: auto;
}

#footer-widgets-area .widget_about_with_image{
    text-align: center;
}

#footer-widgets-area .widget_about_with_image .widget-about-image img{
    border-radius: 200px;
}

#footer-widgets-area .widget_about_with_image p{
    padding: 10px 0 0;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li{
    position: relative;
    min-height: 80px;
    padding-left: 90px;
    margin-bottom: 20px;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li:last-child{
    margin-bottom: 0;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li .thumb{
    position: absolute;
    left: 0;
    top: 0;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li .thumb a{
    display: block;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li .thumb a:hover{
    opacity: 0.8;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li p.title{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li p.title a{
    color: #fff;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li p.title a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_recent_posts_with_thumb ul li p.recent-date{
    font-size: 12px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

#footer-widgets-area .widget_social{
    padding-bottom: 10px;
}

#footer-widgets-area .widget_social .social-icons-wrap a{
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    margin: 0 6px 10px 0;
    line-height: 40px;
    color: #222;
    background: #fff;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

#footer-widgets-area .widget_social .social-icons-wrap a:hover{
    background: #c5b358;
}

#footer-widgets-area .widget_recent_comments_with_time ul li{
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

#footer-widgets-area .widget_recent_comments_with_time ul li:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}

#footer-widgets-area .widget_recent_comments_with_time ul .comment-author-time{
    position: relative;
    padding-right: 100px;
}

#footer-widgets-area .widget_recent_comments_with_time ul .comment-author-time .comment-time{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-style: italic;
}

#footer-widgets-area .widget_recent_comments_with_time ul .comment-author-time .comment-author-link{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #c5b358;
}

#footer-widgets-area .widget_recent_comments_with_time ul .comment-author-time .comment-author-link span{
    text-transform: none;
    color: #fff;
}

#footer-widgets-area .widget_recent_comments_with_time ul li a{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0 15px;
    display: inline-block;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer-widgets-area .widget_recent_comments_with_time ul li a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .null-instagram-feed ul li{
    width: 30.8%;
    margin-right: 3.8%;
    margin-bottom: 10px;
    display: block;
    float: left;
}

#footer-widgets-area .null-instagram-feed ul li img{
    display: block;
}

#footer-widgets-area .null-instagram-feed ul li:nth-child(3n+3){
    margin-right: 0;
}

#footer-widgets-area .null-instagram-feed ul li:nth-child(3n+4){
    clear: left;
}

#footer-widgets-area .null-instagram-feed ul li a{
    display: block;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#footer-widgets-area .null-instagram-feed ul li a:hover{
    opacity: 0.8;
}

#footer-widgets-area .null-instagram-feed p.clear{
    clear: both;
}

#footer-widgets-area .null-instagram-feed p.clear a{
    color: #c5b358;
    text-decoration: underline;
}

#footer-widgets-area .widget_quote_of_the_day .quote-of-the-day-box{
    position: relative;
}

#footer-widgets-area .widget_quote_of_the_day .quote-of-the-day-box p.quote-text{
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

#footer-widgets-area .widget_quote_of_the_day .quote-of-the-day-box p.quote-author{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #c5b358;
    position: relative;
    z-index: 1;
}

#footer-widgets-area .widget_quote_of_the_day .quote-of-the-day-box .fa{
    font-size: 48px;
    color: #ddd;
    position: absolute;
    bottom: 0;
    right: 20px;
}

#footer-widgets-area .jetpack_subscription_widget form #subscribe-text{
    margin-bottom: 10px;
}

#footer-widgets-area .jetpack_subscription_widget form #subscribe-email input{
    display: block;
    width: 100%;
    border: 1px solid #fff;
    padding: 10px;
    outline: 0;
    margin-bottom: 10px;
}

#footer-widgets-area .jetpack_subscription_widget form #subscribe-submit input{
    display: block;
    width: 100%;
    height: 40px;
    background: #ddd;
    color: #fff;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

#footer-widgets-area .jetpack_subscription_widget form #subscribe-submit input:hover{
    background: #fff;
    color: #222;
}

@media (max-width: 600px){
    #footer-widgets-area .footer-widgets{
        width: 100%;
        max-width: 480px;
        margin-right: 0;
        margin: 0 auto;
        float: none;
    }
    #footer-widgets-area .footer-widgets:last-child{
        margin-right: auto;
    }
}

/* ===== FOOTER SOCIAL ===== */
#footer-social{
    background: #444;
    text-align: center;
}

#footer-social .social-icons a{
    line-height: 60px;
    height: 60px;
    font-size: 24px;
    width: 110px;
}

@media (max-width: 1200px){
    #footer-social .social-icons a{
        width: 100px;
    }
}

@media (max-width: 991px){
    #footer-social .social-icons a{
        width: 80px;
    }
}

@media (max-width: 768px){
    #footer-social .social-icons a{
        width: 60px;
    }
}

/* ===== FOOTER ===== */
#footer{
    background: #222;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

#footer p{
    text-align: center;
}

#footer p a{
    color: #fff;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

#footer p a:hover{
    color: #c5b358;
    text-decoration: underline;
}

#footer p .fa{
    color: #c5b358;
}

#back-to-top{
    background: #ddd;
    color: #222;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    opacity: 0.5;
    z-index: 10;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#back-to-top:hover{
    opacity: 1;
}
/*
     FILE ARCHIVED ON 00:00:27 Feb 21, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 06:26:13 Jul 03, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.566
  exclusion.robots: 0.079
  exclusion.robots.policy: 0.068
  esindex: 0.009
  cdx.remote: 44.16
  LoadShardBlock: 68.385 (3)
  PetaboxLoader3.datanode: 52.788 (4)
  PetaboxLoader3.resolve: 72.275 (3)
  load_resource: 87.883
*/